home *** CD-ROM | disk | FTP | other *** search
- *** 1.15 1992/03/23 01:42:10
- --- Changelog 1992/04/19 16:23:42
- ***************
- *** 279,281 ****
- --- 279,287 ----
- dont proto clog() for g++, it clashes with clog stream.
-
- ---------------------------- Patchlevel 17 ------------------------------
- +
- + log.c, log10.c:: andreas
- + __GCC_HACK__ doesn't work with gcc -O2!!
- + (assignment to index will be moved to end of function)
- +
- + ---------------------------- Patchlevel 18 ------------------------------
- *** 1.14 1992/03/23 01:42:10
- --- PatchLevel.h 1992/04/19 16:23:45
- ***************
- *** 1,5 ****
- /*
- ! * PatchLevel: 17
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- --- 1,5 ----
- /*
- ! * PatchLevel: 18
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- *** 1.7 1992/03/21 16:09:38
- --- log.c 1992/04/19 16:24:02
- ***************
- *** 11,29 ****
- * If __GCC_HACK__ is defined then we are folding log and log10 routines*
- * by making in assembler an extra entry point. Do not define that *
- * for portable routine!! *
- * *
- * 68881 support added by Michael Ritzert, November 1991 *
- ************************************************************************
- */
- -
- - #ifdef __GNUC__
- - # ifndef __GCC_HACK__
- - # define __GCC_HACK__
- - # endif
- - # if !(defined(atarist) || defined(atariminix) || defined(mc68000))
- - # undef __GCC_HACK__
- - # endif
- - #endif
-
- /************************************************************************
- * *
- --- 11,21 ----
- * If __GCC_HACK__ is defined then we are folding log and log10 routines*
- * by making in assembler an extra entry point. Do not define that *
- * for portable routine!! *
- + * Do not define that with gcc -O2 !! *
- * *
- * 68881 support added by Michael Ritzert, November 1991 *
- ************************************************************************
- */
-
- /************************************************************************
- * *
- *** 1.5 1992/02/03 20:19:23
- --- log10.c 1992/04/19 16:24:02
- ***************
- *** 60,74 ****
- * log10(x) = log10(e) * log(x)
- *
- */
- - #ifdef __GNUC__
- - # ifndef __GCC_HACK__
- - # define __GCC_HACK__
- - # endif
- - # if !(defined(atarist) || defined(atariminix) || defined(mc68000))
- - # undef __GCC_HACK__
- - # endif
- - #endif
- -
- #if !defined (__M68881__) && !defined (sfp004)
-
- #ifndef __GCC_HACK__ /* see log.c for __GCC_HACK__ */
- --- 60,65 ----
-